home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 18 / CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso / CUCD / Online / SANA2Meter / Source / constdata.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-04  |  770 b   |  39 lines

  1. #ifndef _CONSTDATA_H
  2. #define _CONSTDATA_H
  3. /*
  4. ** $VER: constdata.h 1.0 (25 Apr 1996)
  5. **
  6. ** (C) Copyright 1996 Marius Gröger
  7. **     All Rights Reserved
  8. **
  9. ** $HISTORY:
  10. **
  11. ** 25 Mar 1996 : 001.000 :  created
  12. */
  13.  
  14. #include <exec/types.h>
  15.  
  16. #include "sana2meter.h"
  17. #include "compiler.h"
  18.  
  19. IMPORT const ULONG ttmaskflags[];
  20.  
  21. #define NUM_TTWATCHES 7
  22. IMPORT const struct NewWatch ttwatches[NUM_TTWATCHES + 1];
  23.  
  24. #define NUM_STDWATCHES 9
  25. #define NUM_SPECIALSTATS 20
  26. IMPORT const struct NewWatch stdwatches[NUM_STDWATCHES + NUM_SPECIALSTATS + 1];
  27.  
  28. IMPORT const UBYTE DEF_CONSOLE[];
  29. IMPORT const UBYTE EMAIL_AUTHOR[];
  30. IMPORT const UBYTE CPUTXT[];
  31.  
  32. #define NUM_REFRESHS 11
  33. IMPORT const ULONG intervals[NUM_REFRESHS];
  34.  
  35. #define NUM_AGINGS 6
  36. IMPORT const ULONG agings[NUM_AGINGS];
  37.  
  38. #endif
  39.